7483ad49b468ae6d781e17f4177d4e74c36401e3,src/org/opencms/search/galleries/CmsGallerySearchIndex.java,CmsGallerySearchIndex,getDocumentFactory,#CmsResource#,116
Before Change
if ((res != null) && (m_sources != null)) {
// the result can only be null or the type configured for the resource
if (CmsResourceTypeXmlContent.isXmlContent(res)) {
return OpenCms.getSearchManager().getDocumentFactory(TYPE_XMLCONTENT_GALLERIES, null);
} else if (CmsResourceTypeXmlPage.isXmlPage(res)) {
return OpenCms.getSearchManager().getDocumentFactory(TYPE_XMLPAGE_GALLERIES, null);
After Change
if ((res != null) && (m_sources != null)) {
// the result can only be null or the type configured for the resource
if (CmsResourceTypeXmlContent.isXmlContent(res) || CmsResourceTypeXmlContainerPage.isContainerPage(res)) {
return OpenCms.getSearchManager().getDocumentFactory(TYPE_XMLCONTENT_GALLERIES, null);
} else if (CmsResourceTypeXmlPage.isXmlPage(res)) {
return OpenCms.getSearchManager().getDocumentFactory(TYPE_XMLPAGE_GALLERIES, null);